home *** CD-ROM | disk | FTP | other *** search
- // devnotes.cpp : implementation file
- //
-
- #include "stdafx.h"
- #include "systray.h"
- #include "devnotes.h"
-
- #ifdef _DEBUG
- #undef THIS_FILE
- static char BASED_CODE THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CDialogDevelNotes dialog
-
-
- CDialogDevelNotes::CDialogDevelNotes(CWnd* pParent /*=NULL*/)
- : CDialog(CDialogDevelNotes::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CDialogDevelNotes)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
-
-
- void CDialogDevelNotes::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CDialogDevelNotes)
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
- }
-
-
- BEGIN_MESSAGE_MAP(CDialogDevelNotes, CDialog)
- //{{AFX_MSG_MAP(CDialogDevelNotes)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
-
- /////////////////////////////////////////////////////////////////////////////
- // CDialogDevelNotes message handlers
-
- BOOL CDialogDevelNotes::OnInitDialog()
- {
- CDialog::OnInitDialog();
- CenterWindow();
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
- }
-